home *** CD-ROM | disk | FTP | other *** search
/ Software of the Month Club 2000 October / Software of the Month - Ultimate Collection Shareware 277.iso / pc / PROGRAMS / UTILITY / WINLINUX / DATA1.CAB / programs_-_include / ASM-MIPS / BYTEORDE.{_M < prev    next >
Text File  |  1999-09-17  |  320b  |  15 lines

  1. #ifndef _MIPS_BYTEORDER_H
  2. #define _MIPS_BYTEORDER_H
  3.  
  4. #include <asm/types.h>
  5.  
  6. #if defined (__MIPSEB__)
  7. #  include <linux/byteorder/big_endian.h>
  8. #elif defined (__MIPSEL__)
  9. #  include <linux/byteorder/little_endian.h>
  10. #else
  11. #  error "MIPS, but neither __MIPSEB__, nor __MIPSEL__???"
  12. #endif
  13.  
  14. #endif /* _MIPS_BYTEORDER_H */
  15.